home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- if %1? == mono? goto mono
- if %1? == herc? goto mono
- if %1? == cga? goto mono
- if %1? == ega? goto ega
- if %1? == vga? goto ega
-
- echo ╒═══════════════════════════════════════════════════════════════════╕
- echo │ │
- echo │ PlanPerfect 5.0 Demonstration disk │
- echo │ 10/20/89 │
- echo │ │
- echo │ At the prompt type: │
- echo │ │
- echo │ demo help = For this Help Screen │
- echo │ demo mono = For use on a Monochrome Monitor │
- echo │ demo herc = For use on a Hercules Graphics │
- echo │ demo cga = For use on a CGA Graphics │
- echo │ demo ega = For use on a EGA Graphics │
- echo │ demo vga = For use on a VGA Graphics │
- echo │ │
- echo │ DISABLE DISK CACHING - │
- echo │ If you are running a disk caching program the │
- echo │ graphics for EGA/VGA may become scrambled. │
- echo │ │
- echo ╘═══════════════════════════════════════════════════════════════════╛
- goto end
-
- :mono
- fxshow bwdemo
- goto end
-
- :ega
- fxshow pldemo
- goto end
-
- :end
-